home *** CD-ROM | disk | FTP | other *** search
/ Logiciels PC 18 / LOGICIELSPC_18.ISO / Accuses / MAJ / Rtf2Html / Source C / LIB / GENERAL.C < prev    next >
C/C++ Source or Header  |  1999-06-27  |  1KB  |  54 lines

  1.     
  2. /*
  3.  * %%File: general.c
  4.  *    
  5.  * Copyright (c) 1996-1999 Bertrand LE QUELLEC
  6.  *
  7.  * http://perso.wanadoo.fr/blq
  8.  * blq@wanadoo.fr
  9.  */
  10.  
  11.      
  12. #define  STRICT
  13. #include <windows.h>
  14. #pragma hdrstop
  15.  
  16.  
  17. /* #define TB_2  */ 
  18.  
  19.  
  20. /* Turn off warning: Parameter '' is never used */
  21. #ifdef TB_2
  22. #pragma argsused
  23. #endif
  24.  
  25. /* Every DLL has an entry point LibMain || DllEntryPoint
  26.  * and an exit point WEP. */
  27. #if defined(__FLAT__)
  28.     BOOL WINAPI DllEntryPoint(HANDLE hinstDll, WORD fdwRreason, LPVOID plvReserved)
  29. {
  30. #else /* not flat model  */
  31.  
  32. #ifdef TB_2
  33.     int FAR PASCAL LibMain(HANDLE hInstance, WORD wDataSegment, WORD wHeapSize, LPSTR lpszCmdLine)
  34. #else
  35.     int FAR PASCAL LibMain(HINSTANCE hInstance, WORD wDataSegment, WORD wHeapSize, LPSTR lpszCmdLine)
  36. #endif /* TB_2 */
  37. {
  38.     if(wHeapSize > 0) UnlockData(0);
  39. #endif /* __FLAT */
  40.  
  41.     return 1;   /* Indicate that the DLL was initialized successfully. */
  42. }
  43.  
  44.  
  45. /* Turn off warning: Parameter '' is never used
  46.  * #pragma argsused
  47.  */
  48. int FAR PASCAL WEP ( int bSystemExit )
  49. {
  50.     return 1;
  51. }
  52.  
  53.  
  54.